home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / proc / procAOUT.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  73 lines

  1. /*
  2.  * procAOUT.h --
  3.  *
  4.  *    The a.out format for an object file.
  5.  *
  6.  * Copyright (C) 1985, 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/proc/procAOUT.h,v 9.0 89/09/12 15:14:35 douglis Stable $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _PROCAOUT
  20. #define _PROCAOUT
  21.  
  22. #include "sprite.h"
  23. #include "vm.h"
  24.  
  25. #define    NEW_PAGE_SIZE        0x2000
  26. #define    NEW_SEG_SIZE        0x20000
  27.  
  28. /*
  29.  * Header prepended to each a.out file.
  30.  */
  31.  
  32. typedef struct {
  33.     unsigned short     machineType;    /* machine type */
  34.     unsigned short     magic;        /* magic number */
  35.     unsigned long    code;        /* Size of code segment */
  36.     unsigned long    data;        /* Size of initialized data */
  37.     unsigned long    bss;        /* Size of uninitialized data */
  38.     unsigned long    syms;        /* Size of symbol table */
  39.     unsigned long    entry;        /* Entry point */
  40.     unsigned long    trsize;        /* Size of text relocation */
  41.     unsigned long    drsize;        /* Size of data relocation */
  42. } Proc_AOUT;
  43.  
  44. #define    PROC_OMAGIC    0407        /* Old impure format */
  45. #define    PROC_NMAGIC    0410        /* Read-only text */
  46. #define    PROC_ZMAGIC    0413        /* Demand load format */
  47. #define PROC_MC68010    1        /* runs on '10 or '20 */
  48. #define PROC_MC68020    2        /* runs on '20 only */
  49.  
  50. /*
  51.  * Macros which take exec structures as arguments and tell whether
  52.  * the file has a reasonable magic number or offsets to text|symbols|strings.
  53.  */
  54. #define    PROC_BAD_MAGIC_NUMBER(x) \
  55.     (((x).magic)!=PROC_ZMAGIC)
  56.  
  57. #define    PROC_CODE_FILE_OFFSET(x) \
  58.     ((x).magic==PROC_ZMAGIC ? 0 : sizeof (Proc_AOUT))
  59. #define    PROC_DATA_FILE_OFFSET(x) \
  60.     (PROC_CODE_FILE_OFFSET(x) + (x).code)
  61.  
  62. /*
  63.  * Macros which take exec structures as arguments and tell where the
  64.  * various pieces will be loaded.
  65.  */
  66. #define PROC_CODE_LOAD_ADDR(x) NEW_PAGE_SIZE
  67. #define PROC_DATA_LOAD_ADDR(x) \
  68.     (((x).magic==PROC_OMAGIC)? (PROC_CODE_LOAD_ADDR(x)+(x).code) \
  69.     : (NEW_SEG_SIZE+((PROC_CODE_LOAD_ADDR(x)+(x).code-1) & ~(NEW_SEG_SIZE-1))))
  70. #define PROC_BSS_LOAD_ADDR(x)  (PROC_DATA_LOAD_ADDR(x)+(x).data)
  71.  
  72. #endif _PROCAOUT
  73.